Uses of Class
edu.claflin.finder.logic.Condition
Packages that use Condition
Package
Description
Subgraph Finder - Used to find and locate subgraphs within a network.
Contains the Algorithm code for finding bipartite subgraphs.
Contains the data structure and processing code-base.
Contains Condition implementations for identifying subgraph types.
-
Uses of Condition in edu.claflin.finder
Method parameters in edu.claflin.finder with type arguments of type ConditionModifier and TypeMethodDescriptionprivate static AlgorithmMain.parseAlgorithm(String algorithmCode, HashMap<String, Boolean> config, ArrayList<Condition> conditions, Comparator<Edge> comparator) Parses an algorithm code string for returning the appropriate Algorithm object. -
Uses of Condition in edu.claflin.finder.algo
Fields in edu.claflin.finder.algo with type parameters of type ConditionModifier and TypeFieldDescriptionArgumentsBundle.conditionsListThe List of conditions to apply to the Algorithm.Methods in edu.claflin.finder.algo that return types with arguments of type ConditionModifier and TypeMethodDescriptionArgumentsBundle.getConditionsList()Gets a copy of the conditionsList that will not structurally modify the one owned by the bundle.Methods in edu.claflin.finder.algo with parameters of type ConditionModifier and TypeMethodDescriptionvoidArgumentsBundle.addCondition(Condition condition) Adds a Condition to the conditionsList.voidArgumentsBundle.removeCondition(Condition condition) Removes a Condition from the conditionsList. -
Uses of Condition in edu.claflin.finder.logic
Fields in edu.claflin.finder.logic with type parameters of type ConditionModifier and TypeFieldDescriptionConditionedGraph.conditionsThe List of Conditions applied to this Graph.Methods in edu.claflin.finder.logic that return types with arguments of type ConditionModifier and TypeMethodDescriptionConditionedGraph.getConditionsList()Returns an accessible list of conditions.Methods in edu.claflin.finder.logic with parameters of type ConditionModifier and TypeMethodDescriptionvoidConditionedGraph.addCondition(Condition condition) Adds a condition to the graph.voidConditionedGraph.removeCondition(Condition condition) Removes a condition from the graph.Constructor parameters in edu.claflin.finder.logic with type arguments of type ConditionModifierConstructorDescriptionprivateConditionedGraph(Graph graph, Collection<Condition> conditions) Private constructor used to create copies of ConditionedGraph objects.ConditionedGraph(String graphName, Collection<Condition> conditions) Public constructor for creating a ConditionedGraph.ConditionedGraph(String graphName, Collection<Condition> conditions, boolean forceOnAdd) Public constructor for creating a ConditionedGraph. -
Uses of Condition in edu.claflin.finder.logic.cond
Subclasses of Condition in edu.claflin.finder.logic.condModifier and TypeClassDescriptionclassRepresents a bipartite graph as a Condition object.classRepresents a Clique condition.classRepresents a Directed Clique condition.